Main differences between R and C++
One is compiled, and the other interpreted
Indexing objects: In C++ the indices range from 0 to
(n - 1), whereas in R is from 1 ton.All expressions end with a
;(optional in R).In C++ object need to be declared, in R not (dynamic).